home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / mac / files / ID99MENU.DIR / 00030.ls < prev    next >
Encoding:
Text File  |  1999-04-29  |  304 b   |  31 lines

  1. property s, showbiogrid
  2.  
  3. on beginSprite me
  4.   s = me.spriteNum
  5.   sprite(s).locZ = 2000 + s
  6. end
  7.  
  8. on prepareFrame me
  9.   sprite(s).visible = showbiogrid
  10. end
  11.  
  12. on showbio
  13.   showbiogrid = 1
  14. end
  15.  
  16. on hidebio
  17.   showbiogrid = 0
  18. end
  19.  
  20. on mouseUp
  21.   hidebio()
  22. end
  23.  
  24. on growdown
  25.   hidebio()
  26. end
  27.  
  28. on growup
  29.   hidebio()
  30. end
  31.